s = "abc"
print(3 * s)
s = "xyz"
print(s * 5)

print()
weihnachtsmann = "ho"
weihnachtsmann *= 3
print(weihnachtsmann)

print()
liste = [1, 2]
liste *= 3
print(liste)